home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / close.c,v < prev    next >
Text File  |  1991-11-27  |  2KB  |  138 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.3.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     89.01.06.08.03.57;  author brent;  state Exp;
  11. branches 1.3.1.1;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.07.25.11.25.06;  author ouster;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.06.19.14.31.05;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24. 1.3.1.1
  25. date     91.11.27.13.12.51;  author kupfer;  state Exp;
  26. branches ;
  27. next     ;
  28.  
  29.  
  30. desc
  31. @@
  32.  
  33.  
  34. 1.3
  35. log
  36. @Nuked user-level lock clean up.  It isn't correct and is
  37. correctly superceeded by kernel-level cleanup.
  38. @
  39. text
  40. @/* 
  41.  * close.c --
  42.  *
  43.  *    Procedure to map from Unix close system call to Sprite.
  44.  *
  45.  * Copyright (C) 1986 Regents of the University of California
  46.  * All rights reserved.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: close.c,v 1.2 88/07/25 11:25:06 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include <sprite.h>
  54. #include <fs.h>
  55. #include "compatInt.h"
  56.  
  57.  
  58. /*
  59.  *----------------------------------------------------------------------
  60.  *
  61.  * close --
  62.  *
  63.  *    Procedure to map from Unix close system call to Sprite Fs_Close.
  64.  *
  65.  * Results:
  66.  *    UNIX_ERROR is returned upon error, with the actual error code
  67.  *    stored in errno.  UNIX_SUCCESS is returned upon success.
  68.  *
  69.  * Side effects:
  70.  *    The steamId passed to close is no longer associated with an open 
  71.  *    file.
  72.  *
  73.  *----------------------------------------------------------------------
  74.  */
  75.  
  76. int
  77. close(streamId)
  78.     int streamId;        /* identifier for stream to close */
  79. {
  80.     ReturnStatus status;    /* result returned by Fs_Close */
  81.  
  82.     status = Fs_Close(streamId);
  83.     if (status != SUCCESS) {
  84.     errno = Compat_MapCode(status);
  85.     return(UNIX_ERROR);
  86.     } else {
  87.     return(UNIX_SUCCESS);
  88.     }
  89. }
  90. @
  91.  
  92.  
  93. 1.3.1.1
  94. log
  95. @Initial branch for Sprite server.
  96. @
  97. text
  98. @d11 1
  99. a11 1
  100. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/close.c,v 1.3 89/01/06 08:03:57 brent Exp $ SPRITE (Berkeley)";
  101. @
  102.  
  103.  
  104. 1.2
  105. log
  106. @Lint.
  107. @
  108. text
  109. @d11 1
  110. a11 1
  111. static char rcsid[] = "$Header: close.c,v 1.1 88/06/19 14:31:05 ouster Exp $ SPRITE (Berkeley)";
  112. a17 6
  113. /*
  114.  * Routines called from flock.c:
  115.  */
  116.  
  117. extern void Unix_CloseLock();
  118.  
  119. a42 1
  120.     Unix_CloseLock(streamId);
  121. @
  122.  
  123.  
  124. 1.1
  125. log
  126. @Initial revision
  127. @
  128. text
  129. @d11 1
  130. a11 1
  131. static char rcsid[] = "$Header: close.c,v 1.3 88/01/11 18:21:02 deboor Exp $ SPRITE (Berkeley)";
  132. d14 2
  133. a15 2
  134. #include "sprite.h"
  135. #include "fs.h"
  136. d17 6
  137. @
  138.